home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Tools / ResAnomaly 1.2 ƒ / ResAnomaly Source / ResAnomalyDefaults.h < prev    next >
Text File  |  1995-08-04  |  727b  |  30 lines

  1. /*
  2.     ResAnomaly Settings defaults
  3.     ©1995 Chris K. Thomas.  All Rights Reserved.
  4.     
  5.     These will probably become local FrDropApp state
  6.     at some point.
  7. */
  8.  
  9. /*
  10. #ifdef __powerc
  11. const OSType kTextFileCreator = 'MPCC';
  12. #else // 68k!
  13. const OSType kTextFileCreator = 'MMCC';
  14. #endif
  15.  
  16. const Str255    kDefaultDotExtension = "\pIDs.h";
  17. const short        kInvalidNameCharWhiteSpace = '_';
  18. const short        kInvalidNameCharNonAlphaNum = 'x';
  19. */
  20.  
  21. struct ResAnomalyPrefs
  22. {
  23.     SInt32    rapPrefsVersion;            // * current is 1
  24.     OSType    rapCreator;                    // * default 'CWIE'
  25.     SInt16    rapReplaceWhitespace;        // * default '_'
  26.     SInt16    rapReplaceNonAlphaNumeric;    // * default 'x'
  27.     Str31    rapDotExtension;            // * default "\p.IDs.h"
  28. };
  29.  
  30. /*const ResAnomalyPrefs kDefaults = {};*/